.team-info-card {
    display: flex;
    padding: 24px;
    background: var(--on-background-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    gap: 16px;
}

.team-logo {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    padding: 16px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--background-color);
    border: 1px solid var(--border-color);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-details h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text-color);
}

.team-details p {
    color: var(--secondary-text-color);
    margin: 4px 0;
}

.team-details strong {
    font-weight: 700;
}
